home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 42
/
Amiga Format AFCD42 (Issue 126, Aug 1999).iso
/
-screenplay-
/
shareware
/
scott
/
source
/
source.lha
/
gui.c
< prev
next >
Wrap
C/C++ Source or Header
|
1999-04-04
|
3KB
|
185 lines
struct EasyStruct NoGFX =
{
sizeof(struct EasyStruct),0,
"Problem With Graphics",
"%s",
"Well Done"
};
struct EasyStruct NoScreen =
{
sizeof(struct EasyStruct),0,
"Unable To Open Screen",
"Could not open requested PublicScreen.\nWill use default PubScreen instead.",
"Alright"
};
struct EasyStruct NoPens =
{
sizeof(struct EasyStruct),0,
"Colour Allocation Problem",
"Could not allocate enough free pens.\nGraphics will be switched off!",
"What a pity"
};
struct EasyStruct ClosePub =
{
sizeof(struct EasyStruct),0,
"Public Screen Request",
"Please close all windows on screen.",
"Of Course"
};
struct EasyStruct NoProp =
{
sizeof(struct EasyStruct),0,
"Text Font Problem Information",
"'%s' is a PROPORTIONAL font.\nPlease use a NON PROPORTIONAL font!",
"Of Course"
};
struct EasyStruct GameInfo =
{
sizeof(struct EasyStruct),0,
"Game Information",
"%s",
"Very Interesting"
};
struct EasyStruct BigWins =
{
sizeof(struct EasyStruct),0,
"System Problem Report",
"Windows are too big for screen!\nTry the TANDYFLAG-ToolType (-t),\nuse a smaller font or\nopen a bigger screen :-)",
"I'll check that"
};
struct EasyStruct Quit =
{
sizeof(struct EasyStruct),0,
"Confirmation Request",
"Do you really want to quit %s?",
"Yes|No"
};
struct EasyStruct About =
{
sizeof(struct EasyStruct),0,
"Very Important Information",
"AMIGA SCOTT-Free V1.8, 1996-99\n© Andreas Aumayr, Weidenweg 22\nA-4210 Engerwitzdorf, AUSTRIA\nE-Mail: anden@ping.at\n\nBased on SCOTT-Free for UNIX\n© Swansea University Comp. Soc.",
"I'll send a postcard or email to Andreas"
};
struct EasyStruct NoMem =
{
sizeof(struct EasyStruct),0,
"System Problem Report",
"Unable to get some mem!\nTerminating.",
"Acknowledged"
};
struct EasyStruct Library =
{
sizeof(struct EasyStruct),0,
"System Problem Report",
"Unable to open\n'%s-Library'",
"Acknowledged"
};
struct EasyStruct FError =
{
sizeof(struct EasyStruct),0,
"DOS Problem Report",
"Unable to read Adventure-Datafile\n'%s'",
"Acknowledged"
};
struct EasyStruct ConFail =
{
sizeof(struct EasyStruct),0,
"System Problem Report",
"Failed to open Console-Window\n'%s'",
"Acknowledged"
};
struct NewMenu newmenu[] =
{
{
NM_TITLE,"SCOTT-Free",NULL,0,0,NULL
},
{
NM_ITEM,"About","?",0,0,NULL
},
{
NM_ITEM,NM_BARLABEL,NULL,0,0,NULL
},
{
NM_ITEM,"Datafile ...","D",0,0,NULL
},
{
NM_ITEM,NM_BARLABEL,NULL,0,0,NULL
},
{
NM_ITEM,"Help","H",0,0,NULL
},
{
NM_ITEM,NM_BARLABEL,NULL,0,0,NULL
},
{
NM_ITEM,"Quit","Q",0,0,NULL
},
{
NM_TITLE,"Adventure",NULL,0,0,NULL
},
{
NM_ITEM,"Game Info","G",0,0,NULL
},
{
NM_ITEM,NM_BARLABEL,NULL,0,0,NULL
},
{
NM_ITEM,"Restore ...","R",0,0,NULL
},
{
NM_ITEM,"Save ...","S",0,0,NULL
},
{
NM_ITEM,NM_BARLABEL,NULL,0,0,NULL
},
{
NM_ITEM,"Restart","N",0,0,NULL
},
{
NM_TITLE,"Commands",NULL,0,0,NULL
},
{
NM_ITEM,"Look","L",0,0,NULL
},
{
NM_ITEM,"Inventory","I",0,0,NULL
},
{
NM_ITEM,"Get All","A",0,0,NULL
},
{
NM_ITEM,NM_BARLABEL,NULL,0,0,NULL
},
{
NM_ITEM,"Score","C",0,0,NULL
},
{
NM_TITLE,"Prefs",NULL,0,0,NULL
},
{
NM_ITEM,"Pictures","P",CHECKIT|MENUTOGGLE|CHECKED,0,NULL
},
{
NM_ITEM,"Speech","E",CHECKIT|MENUTOGGLE,0,NULL
},
{
NM_END,NULL,0,0,NULL
},
};